home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
Issue45
/
Clinic
/
Server
/
Server.dpr
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2000-11-02
|
306 b
|
18 lines
program Server;
uses
Forms,
ServerForm in 'ServerForm.pas' {Form1},
Server_TLB in 'Server_TLB.pas',
ServerClass in 'ServerClass.pas' {Test: CoClass};
{$R *.TLB} {CORBA}
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.